runtime.schedt.lastpoll (field)
10 uses
runtime (current package)
proc.go#L857: sched.lastpoll.Store(nanotime())
proc.go#L3060: if sched.npidle.Load() == gomaxprocs-1 && sched.lastpoll.Load() != 0 {
proc.go#L3340: if netpollinited() && netpollAnyWaiters() && sched.lastpoll.Load() != 0 {
proc.go#L3559: if netpollinited() && (netpollAnyWaiters() || pollUntil != 0) && sched.lastpoll.Swap(0) != 0 {
proc.go#L3585: sched.lastpoll.Store(now)
proc.go#L3639: if netpollinited() && netpollAnyWaiters() && sched.lastpoll.Load() != 0 {
proc.go#L3830: if sched.lastpoll.Load() == 0 {
proc.go#L6125: lastpoll := sched.lastpoll.Load()
proc.go#L6127: sched.lastpoll.CompareAndSwap(lastpoll, now)
runtime2.go#L778: lastpoll atomic.Int64 // time of last network poll, 0 if currently polling
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |